a1c92f8906771697070987acde49c36d9a571c78,webconsole-plugins/ds/src/main/java/org/apache/felix/webconsole/plugins/ds/internal/WebConsolePlugin.java,RequestInfo,RequestInfo,#HttpServletRequest#,551
Before Change
final Collection<ComponentDescriptionDTO> descs = scrService.getComponentDescriptionDTOs();
for(final ComponentDescriptionDTO d : descs)
{
for(final ComponentConfigurationDTO cfg : scrService.getComponentConfigurationDTOs(d))
{
configurations.add(cfg);
}
After Change
{
disabled.add(d);
}
configurations.addAll(scrService.getComponentConfigurationDTOs(d));
}
Collections.sort(configurations, Util.COMPONENT_COMPARATOR);
}